home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / dbase / fiasco.lha / Fiasco_1.2 / ARexx / unlockgui.rexx < prev    next >
OS/2 REXX Batch file  |  1995-12-09  |  304b  |  20 lines

  1. /* UnlockGUI.rexx
  2.  * Script to unlock the GUI of Fiasco, if other scripts forgot it
  3.  * Copyright © 1995 Nils Bandener
  4.  * $VER: UnlockGUI.rexx 3.1 (1.11.95)
  5.  */
  6.  
  7. /*
  8.  * Fiasco will complain once, if ARexx-Debug is activated.
  9.  */
  10.  
  11. address FIASCO
  12.  
  13. do forever
  14.  
  15.     F_UnlockGUI
  16.  
  17.     if rc ~= 0 then break
  18.  
  19. end
  20.